home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_asm / asmddd / dddpre.asm < prev    next >
Encoding:
Assembly Source File  |  1991-04-16  |  334 b   |  14 lines

  1.     PAGE    ,132
  2.  
  3. CSEG    SEGMENT
  4.     ASSUME    CS:CSEG, DS:NOTHING, ES:NOTHING
  5.     ORG    0000H            ; For all device drivers
  6.  
  7. Header    DD    -1            ; One device
  8.     DW    08000H            ; Character device
  9. StratA    DW    Strat            ; Strategy entrance
  10. IntrA    DW    Intr            ; Interrupt entrance
  11.     DB    'DDDName '        ; 8 character dummy name
  12.  
  13. ;    Note: Put resident part of DDD here.
  14.